home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / include / sys / timeb.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  285b  |  21 lines

  1. #include <sys/types.h>
  2.  
  3. struct timeb
  4. {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;
  7.     short        timezone;
  8.     short        dstflag;
  9. };
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. extern int    ftime(struct timeb *);
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21.